projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b97771f
)
(texinfo-anchor): Don't delete a non-speace after the @anchor command.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 19 May 1999 01:40:23 +0000
(
01:40
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 19 May 1999 01:40:23 +0000
(
01:40
+0000)
lisp/textmodes/texinfmt.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/texinfmt.el
b/lisp/textmodes/texinfmt.el
index 101737227b2cd90f1717ee659c7d8b5b486506a1..91fa154933b8918cb692469da03a042726820020 100644
(file)
--- a/
lisp/textmodes/texinfmt.el
+++ b/
lisp/textmodes/texinfmt.el
@@
-1143,7
+1143,8
@@
Leave point after argument."
(let (anchor-string
(here (- (point) 7)) ; save location of beginning of `@anchor'
(arg (texinfo-parse-arg-discard)))
- (delete-char 1) ; since a space is left after -discard
+ (if (looking-at " ") ; since a space may be left after -discard
+ (delete-char 1))
(forward-paragraph)
(let ((end (point)))
(if (save-excursion